home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / filesyst / ncpfs / ipxripd-.000 / ipxripd- / ipxripd / ipxutil.h < prev    next >
C/C++ Source or Header  |  1996-02-01  |  2KB  |  66 lines

  1. /*
  2.  
  3.     IPX support library
  4.  
  5.     Copyright (C) 1994, 1995  Ales Dryak <e-mail: A.Dryak@sh.cvut.cz>
  6.     Copyright (C) 1996, Volker Lendecke <lendecke@namu01.gwdg.de>
  7.  
  8.     This program is free software; you can redistribute it and/or modify
  9.     it under the terms of the GNU General Public License as published by
  10.     the Free Software Foundation; either version 2 of the License, or
  11.     (at your option) any later version.
  12.  
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23. #ifndef __IPXUTIL_H__
  24.  
  25. #define __IPXUTIL_H__
  26.  
  27. #include <stdio.h>
  28. #include <linux/ipx.h>
  29.  
  30. #define IPX_MAX_ERROR    (255)
  31. #define IPX_THIS_NET     (0)
  32. #define IPX_THIS_NODE    (ipx_this_node)
  33. #define IPX_BROADCAST    (ipx_broadcast_node)
  34. #define IPX_AUTO_PORT    (0)
  35. #define IPX_USER_PTYPE    (0)
  36. #define IPX_IS_INTERNAL (1)
  37.  
  38. typedef unsigned char IPXNode[6];
  39. typedef unsigned long int IPXNet;
  40. typedef unsigned short int IPXPort;
  41. typedef unsigned short int hop_t;
  42. typedef unsigned short int tick_t;
  43.  
  44. void ipx_print_node(IPXNode node);
  45. void ipx_print_network(IPXNet net);
  46. void ipx_print_port(IPXPort port);
  47. void ipx_print_saddr(struct sockaddr_ipx* sipx);
  48.  
  49. void ipx_fprint_node(FILE* file,IPXNode node);
  50. void ipx_fprint_network(FILE* file,IPXNet net);
  51. void ipx_fprint_port(FILE* file,IPXPort port);
  52. void ipx_fprint_saddr(FILE* file,struct sockaddr_ipx* sipx);
  53.  
  54. int ipx_sscanf_node(char *buf, IPXNode node);
  55. int ipx_sscanf_net(char *buf, IPXNet *target);
  56.  
  57. void ipx_assign_node(IPXNode dest,IPXNode src);
  58. int ipx_node_equal(IPXNode n1,IPXNode n2);
  59.  
  60. extern IPXNode ipx_this_node;
  61. extern IPXNode ipx_broadcast_node;
  62.  
  63. extern char ipx_err_string[IPX_MAX_ERROR+1];
  64.  
  65. #endif
  66.